home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 3 / Amiga Tools 3.iso / grafik / videotracker / readme < prev    next >
Encoding:
Text File  |  1995-09-01  |  12.8 KB  |  330 lines

  1.  
  2. ---------------------------------------------------------------------------
  3. The full working VideoTracker v2.0 is send to all 22 registered users at
  4. 18-7-94, if you are a registered user and haven't received it: contact me.
  5. (Mail to the USA can take up to a week.)
  6. My internet-address has changed to:
  7. PV.Campen@inter.nl.net
  8. ---------------------------------------------------------------------------
  9.  
  10. This version is debugged for high end Amigas like the 4000/40.
  11.  
  12. I bought an expansionboard with:
  13.  
  14. 68030 at 28mhz + MMU, 68882 at 28mhz, 4 meg fastram and a clock.
  15.  
  16. The routines in the v1.42 version, didn't make good use of fastmem,
  17. that's changed now.
  18. I rewrote VideoTracker and all routines to make maximum use of fastmem
  19. and the results are good:
  20.  
  21. As an example, the memory usage of the Bonzai video:
  22.  
  23.                       Size    Fastmem   Chipmem
  24. VideoTracker v1.42    1547k     75K      1473k
  25. VideoTracker v2.0     1600k    756k       844k   
  26.  
  27. It saves a lot of chipmem like you can see.
  28.  
  29. I also used Enforcer (MMU needed) for debugging VideoTracker, moduleplayers
  30. (ProTracker) and some routines. (CopperMagnify)
  31. Some routines didn't look well on NTSC (tunnel.rot), I fixed them to.
  32.  
  33. There is a way now to make VideoTracker react on music from a CD-player,
  34. tape, or a live mixing DJ.
  35. I have a rebuilded 3-way lightorgan connected to my computer, instead of
  36. sending the signals to lightbulbs, it sends them to electronic switches that
  37. are connected to a Joystick-plug.
  38. I made a player that reacts on signals from joystick port 2, I've put a
  39. testvideo called "Joystick" on this disk.
  40. The video must be 8 songpositions, it reacts on left, up and right, the
  41. button selects the next songposition, when it's at 8 it restarts at 0.
  42. For better bass and hihat reactions, you can add an Equalizer.
  43.  
  44. New or improved routines:
  45.  
  46. CopperColor
  47. CopperMagnify3AGA.rot
  48. PictureFade
  49. PictureWipe
  50. Vector
  51.  
  52. The Vector routines can now handle 8-color geo-files.
  53. There are example-videos of the new or improved routines on this disk.
  54.  
  55. ============================================================================
  56.  
  57. Routinename:    CopperColor
  58. Authors:    Peter van Campen
  59. Description:    This is a simple but nice effect, it needs a Colorset of
  60.         256 colors and shows the colors form top to bottom using the
  61.         copper.
  62.         You can put a picture on top of it.
  63.         It can handle 24-bit colors in the AGA version.
  64.         It is used in the Women video.
  65.         
  66. Routine mode    Description
  67. ----------------------------------------------------------------------------
  68. 0        Shows the colors on screen with no movement.
  69. 1        Scrolls the colors up.
  70. 2        Scrolls the colors down.
  71. 3        Scrolls the colors up fast.
  72. 4        Scrolls the colors down fast.
  73.  
  74. ============================================================================
  75.  
  76. Routinename:    CopperMagnify
  77. Authors:    Peter van Campen
  78. Versions:    4,8,3AGA 4AGA
  79. Description:    Takes a HAM-brush, and rotates and magnifies it in a
  80.         copperlist.
  81.         The routine doesn't use the blitter, but is still very
  82.         fast.
  83.         I didn't use the blitter to get very high speeds on
  84.         680++ Amigas.
  85.         The maximum height of the brush is 256, the maximum
  86.         width is 256.
  87.  
  88.         Version 8 shows the picture in pixels of size 8*8, it
  89.         uses the complete view-screen.
  90.         This version doesn't need a picture, so you could use
  91.         it with a picture in front of it. (dual playfield)
  92.         You can add an empty picture over it with the routinemode
  93.         to prevent dual playfield.
  94.  
  95.         Version 4 shows the picture in pixels of size 4*4, it
  96.         uses part of the view-screen.
  97.         This version uses a picture 192*192*32 to get the small
  98.         4*4 pixels, it doesn't use the routinemode.
  99.  
  100.         Version 4AGA shows the picture in pixels of size 4*4, it
  101.         uses the complete view-screen.
  102.         This version uses a picture 384*288*256 to get the small
  103.         4*4 pixels, it has a special 3D tunnel mode which is used
  104.         int the "Bonzai" video.
  105.  
  106.         Version 3AGA shows the picture in pixels of size 3*3, it
  107.         uses the complete view-screen.
  108.                 It uses a new trick to get the full screen 3*3 pixels. 
  109.         This version uses a pictureline 384*1*128 to get the small
  110.         3*3 pixels, it has a special 3D tunnel mode.
  111.  
  112.  
  113. Routine mode    Description
  114. ----------------------------------------------------------------------------
  115. 0        Don't use an empty picture on screen.
  116. 1        Use an empty picture on screen, this prevents dual
  117.         playfield effects. (Only used by version 8)
  118. 16-31        Shows the brush in a 3D tunnel and moves in several ways,
  119.                 (depends on the routinemode), only in the 3AGA and 4AGA
  120.                 version !
  121.  
  122. ============================================================================
  123.  
  124. Routinename:    PictureFade
  125. Authors:    Peter van Campen
  126. Description:    This is an AGA only routine, it is not possible on OCS/ECS
  127.         Amigas.
  128.         This routine can fade 2 16-color pictures through eachother.
  129.         You have to use this routine with 2 black 16-color dual
  130.         playfield pictures on screen, and their palettes as
  131.         colorsets.
  132.         Look at the example-videos or the Women-video to see how
  133.         it's exactly done.
  134.         The routinemode is the speed of the fading.
  135.  
  136. ============================================================================
  137.  
  138. Routinename:    PictureWipe
  139. Authors:    Peter van Campen
  140. Description:    This routine can show a picture on screen with a nice
  141.         effect like flipping a page or zooming out.
  142.         At this moment the routine is not finished yet, but I
  143.         made an example video to show you what's the idea.
  144.  
  145. ============================================================================
  146.  
  147. There is a new file-area on the support-BBS called "VideoTracker-Extra",
  148. it's used for videos and vidules from registered users and other stuff
  149. that is not spread with the VideoTracker-package.
  150. All the files are free download and you don't have to enter your name
  151. and stuff to save phonecosts, just enter the "Free Files" area when
  152. you log in.
  153.  
  154. Here are the current VideoTracker files on the BBS:
  155.  
  156. Area: [69] [VideoTracker - Extra] [1/1-6]
  157.  
  158. [Filename] VTHEAVEN.DMS                         [File 1 VAN 6] [FREE]
  159. [Size    ] 810645                               [Mon 30 May 94 22:45]
  160. [Dwnlds  ] 7                                    [Time  ] 10:25
  161.  
  162. MegaDemo 7th Heaven by Digital Dreams, (3 vidules, crunched with titanics
  163. cruncher, great example for how to make a megademo with VideoTracker)
  164.  
  165. [Filename] VTCRESYN.DMS                         [File 2 VAN 6] [FREE]
  166. [Size    ] 820708                               [Mon 30 May 94 22:55]
  167. [Dwnlds  ] 8                                    [Time  ] 10:33
  168.  
  169. 2 videos: "Syndrome" by John v/d Zee and "Credits" by Peter van Campen,
  170. Syndrome is an A500 video, Credits is an A1200 video made to show the
  171. credits of the Starlight Party Video. Starlight contains a SuperHires
  172. InterLace OverScan 256 color mandelbrot, using colorcycle and different
  173. palettes.
  174.  
  175. [Filename] VTFURGAR.DMS                         [File 3 VAN 6] [FREE]
  176. [Size    ] 808710                               [Mon 30 May 94 23:07]
  177. [Dwnlds  ] 4                                    [Time  ] 10:24
  178.  
  179. 2 videos: "Gargamel" and "Furious", by John v/d Zee and Joost Vreeken,
  180. Gargamel is for the A500, Furious for the A600 and A1200, Gargamel contains
  181. trance-techno music and Furious a Thunderdome 5 Remix with Party Zone
  182. video-effects. Gargamel has several smurf-animations.
  183.  
  184. [Filename] VTLIVE1.LHA                          [File 5 VAN 6] [FREE]
  185. [Size    ] 42364                                [Wed  6 Jul 94 16:46]
  186. [Dwnlds  ] 1                                    [Time  ] 0:32
  187.  
  188. 2 jpeg framegrabs from a Sosumi show in Cleveland, Ohio, USA where they
  189. used VideoTracker on a big screen.
  190.  
  191. [Filename] VTAMBPRE.EXE                         [File 6 VAN 6] [FREE]
  192. [Size    ] 1767344                              [Mon 18 Jul 94 17:58]
  193. [Dwnlds  ] 0                                    [Time  ] 22:43
  194.  
  195. Simple preview vidule of the new Ambient video, needs AGA + 2Meg FastMem,
  196. only tested on 28mhz 68030, original length: 3220k, crunched with
  197. Titanics cruncher.
  198.  
  199.  
  200.  
  201. Area: [70] [VideoTracker - Support]
  202.  
  203. [Filename] VTGABBER.DMS                         [File 2 VAN 21] [FREE]
  204. [Size    ] 358889                               [Sat 14 Aug 93 13:11]
  205. [Dwnlds  ] 31                                   [Time  ] 4:36
  206.  
  207. VideoTracker GabberHouse Video
  208.  
  209. [Filename] VTOBJECT.DMS                         [File 3 VAN 21] [FREE]
  210. [Size    ] 130109                               [Sat 14 Aug 93 13:14]
  211. [Dwnlds  ] 22                                   [Time  ] 1:40
  212.  
  213. VideoTracker Object Example Videos
  214.  
  215. [Filename] VTSCROLL.DMS                         [File 4 VAN 21] [FREE]
  216. [Size    ] 188766                               [Sat 14 Aug 93 13:15]
  217. [Dwnlds  ] 29                                   [Time  ] 2:25
  218.  
  219. VideoTracker Scroll Example Videos
  220.  
  221. [Filename] VTVECTOR.DMS                         [File 5 VAN 21] [FREE]
  222. [Size    ] 116182                               [Sat 14 Aug 93 13:17]
  223. [Dwnlds  ] 23                                   [Time  ] 1:29
  224.  
  225. VideoTracker Vector Example Videos
  226.  
  227. [Filename] VTTECHNO.DMS                         [File 6 VAN 21] [FREE]
  228. [Size    ] 177549                               [Sat 14 Aug 93 13:18]
  229. [Dwnlds  ] 23                                   [Time  ] 2:16
  230.  
  231. VideoTracker Techno Video
  232.  
  233. [Filename] VTUTIL1.DMS                          [File 7 VAN 21] [FREE]
  234. [Size    ] 649786                               [Sat 14 Aug 93 13:22]
  235. [Dwnlds  ] 24                                   [Time  ] 8:21
  236.  
  237. VideoTracker Utilities 1
  238.  
  239. [Filename] VTZAP.DMS                            [File 8 VAN 21] [FREE]
  240. [Size    ] 229825                               [Fri 17 Sep 93 21:41]
  241. [Dwnlds  ] 20                                   [Time  ] 2:57
  242.  
  243. Video "Zap" + examples.
  244.  
  245. [Filename] VTBLERK.DMS                          [File 9 VAN 21] [FREE]
  246. [Size    ] 432758                               [Fri 17 Sep 93 22:13]
  247. [Dwnlds  ] 25                                   [Time  ] 5:33
  248.  
  249. Video "Blerk". (Beavis & Butthead)
  250.  
  251. [Filename] VTRAVE.DMS                           [File 10 VAN 21] [FREE]
  252. [Size    ] 586171                               [Tue 16 Nov 93 16:09]
  253. [Dwnlds  ] 21                                   [Time  ] 7:32
  254.  
  255. VideoTracker "Rave The Amiga" video, tested on A600 & A1200.
  256.  
  257. [Filename] VTTRANC1.DMS                         [File 11 VAN 21] [FREE]
  258. [Size    ] 376661                               [Tue 16 Nov 93 16:11]
  259. [Dwnlds  ] 10                                   [Time  ] 4:50
  260.  
  261. VideoTracker: "I WIll Trance U", relaxed video. Part 1/2
  262.  
  263. [Filename] VTTRANC2.DMS                         [File 12 VAN 21] [FREE]
  264. [Size    ] 568743                               [Tue 16 Nov 93 16:12]
  265. [Dwnlds  ] 10                                   [Time  ] 7:18
  266.  
  267. VideoTracker: "I Will Trance U", part 2/2.
  268.  
  269. [Filename] VTCAMEL.DMS                          [File 13 VAN 21] [FREE]
  270. [Size    ] 364805                               [Thu  6 Jan 94 20:58]
  271. [Dwnlds  ] 13                                   [Time  ] 4:41
  272.  
  273. VideoTracker: "Camel" video.
  274. 1meg chip, new animation-routine.
  275.  
  276. [Filename] VTCAOTIC.DMS                         [File 14 VAN 21] [FREE]
  277. [Size    ] 598386                               [Thu  6 Jan 94 21:04]
  278. [Dwnlds  ] 10                                   [Time  ] 7:41
  279.  
  280. VideoTracker: "Caotic" video.
  281. 1meg chip, 2 versions: OCS & AGA !
  282.  
  283. [Filename] VTBONZAI.DMS                         [File 15 VAN 21] [FREE]
  284. [Size    ] 387787                               [Fri 25 Feb 94 22:43]
  285. [Dwnlds  ] 13                                   [Time  ] 4:59
  286.  
  287. Video: "Bonzai", excellent AGA video ! TATATATAA !!!!
  288.  
  289. [Filename] VTWOMEN.DMS                          [File 16 VAN 21] [FREE]
  290. [Size    ] 862927                               [Tue 12 Apr 94 17:15]
  291. [Dwnlds  ] 11                                   [Time  ] 11:05
  292.  
  293. "Women" video, AGA
  294.  
  295. [Filename] VTUTIL2.DMS                          [File 17 VAN 21] [FREE]
  296. [Size    ] 583632                               [Fri 10 Jun 94 21:39]
  297. [Dwnlds  ] 4                                    [Time  ] 7:30
  298.  
  299. VT Utilities 2 PD Contains:
  300. Titanics Cruncher, Graphics Ripper, Tree 4D,
  301. Mand2000D, Spirodraw02, Plasma, Demmer,
  302. Scenery, TreeGrow, Mostra
  303.  
  304. [Filename] VTMAIN19.INF                         [File 18 VAN 21] [FREE]
  305. [Size    ] 5455                                 [Tue  5 Jul 94 17:09]
  306. [Dwnlds  ] 1                                    [Time  ] 0:04
  307.  
  308. Info about the VideoTracker v1.99 update
  309.  
  310. [Filename] VTMAIN19.DMS                         [File 19 VAN 21] [FREE]
  311. [Size    ] 621365                               [Tue  5 Jul 94 17:16]
  312. [Dwnlds  ] 1                                    [Time  ] 7:59
  313.  
  314. VideoTracker v1.99 demoversion, released for beta-testing.
  315. The v2.0 update will soon be send to all registered users.
  316.  
  317. [Filename] VTROUT14.LHA                         [File 20 VAN 21] [FREE]
  318. [Size    ] 258230                               [Tue  5 Jul 94 17:20]
  319. [Dwnlds  ] 0                                    [Time  ] 3:19
  320.  
  321. All routines for VideoTracker v1.42, The CU Amiga June 94 release.
  322.  
  323. [Filename] VTDEVE19.DMS                         [File 21 VAN 21] [FREE]
  324. [Size    ] 852717                               [Tue  5 Jul 94 17:29]
  325. [Dwnlds  ] 0                                    [Time  ] 10:57
  326.  
  327. VideoTracker v1.99 Developer Kit, with all routinesources, also
  328. incbins, includes.
  329.  
  330.